export default function ExampleDynamicPage({ params }: { params: { id: string } }) { return (

Example Dynamic {params.id}

); }